type net/http.http2serverConn

80 uses

	net/http (current package)
		h2_bundle.go#L3892: 	http2testHookGetServerConn func(*http2serverConn)
		h2_bundle.go#L3894: 	http2testHookOnPanic       func(sc *http2serverConn, panicVal interface{}) (rePanic bool)
		h2_bundle.go#L4023: 	activeConns map[*http2serverConn]struct{}
		h2_bundle.go#L4026: func (s *http2serverInternalState) registerConn(sc *http2serverConn) {
		h2_bundle.go#L4035: func (s *http2serverInternalState) unregisterConn(sc *http2serverConn) {
		h2_bundle.go#L4067: 	conf.state = &http2serverInternalState{activeConns: make(map[*http2serverConn]struct{})}
		h2_bundle.go#L4217: 	sc := &http2serverConn{
		h2_bundle.go#L4355: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
		h2_bundle.go#L4363: type http2serverConn struct {
		h2_bundle.go#L4424: func (sc *http2serverConn) maxHeaderListSize() uint32 {
		h2_bundle.go#L4436: func (sc *http2serverConn) curOpenStreams() uint32 {
		h2_bundle.go#L4450: 	sc        *http2serverConn
		h2_bundle.go#L4474: func (sc *http2serverConn) Framer() *http2Framer { return sc.framer }
		h2_bundle.go#L4476: func (sc *http2serverConn) CloseConn() error { return sc.conn.Close() }
		h2_bundle.go#L4478: func (sc *http2serverConn) Flush() error { return sc.bw.Flush() }
		h2_bundle.go#L4480: func (sc *http2serverConn) HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) {
		h2_bundle.go#L4484: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
		h2_bundle.go#L4511: func (sc *http2serverConn) setConnState(state ConnState) {
		h2_bundle.go#L4517: func (sc *http2serverConn) vlogf(format string, args ...interface{}) {
		h2_bundle.go#L4523: func (sc *http2serverConn) logf(format string, args ...interface{}) {
		h2_bundle.go#L4575: func (sc *http2serverConn) condlogf(err error, format string, args ...interface{}) {
		h2_bundle.go#L4594: func (sc *http2serverConn) canonicalHeader(v string) string {
		h2_bundle.go#L4631: func (sc *http2serverConn) readFrames() {
		h2_bundle.go#L4663: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest, wd *http2writeData) {
		h2_bundle.go#L4673: func (sc *http2serverConn) closeAllStreamsOnConnClose() {
		h2_bundle.go#L4680: func (sc *http2serverConn) stopShutdownTimer() {
		h2_bundle.go#L4687: func (sc *http2serverConn) notePanic() {
		h2_bundle.go#L4702: func (sc *http2serverConn) serve() {
		h2_bundle.go#L4808: 			case func(*http2serverConn):
		h2_bundle.go#L4834: func (sc *http2serverConn) awaitGracefulShutdown(sharedCh <-chan struct{}, privateCh chan struct{}) {
		h2_bundle.go#L4853: func (sc *http2serverConn) onSettingsTimer() { sc.sendServeMsg(http2settingsTimerMsg) }
		h2_bundle.go#L4855: func (sc *http2serverConn) onIdleTimer() { sc.sendServeMsg(http2idleTimerMsg) }
		h2_bundle.go#L4857: func (sc *http2serverConn) onShutdownTimer() { sc.sendServeMsg(http2shutdownTimerMsg) }
		h2_bundle.go#L4859: func (sc *http2serverConn) sendServeMsg(msg interface{}) {
		h2_bundle.go#L4872: func (sc *http2serverConn) readPreface() error {
		h2_bundle.go#L4913: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
		h2_bundle.go#L4960: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
		h2_bundle.go#L4980: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
		h2_bundle.go#L5044: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
		h2_bundle.go#L5101: func (sc *http2serverConn) wroteFrame(res http2frameWriteResult) {
		h2_bundle.go#L5165: func (sc *http2serverConn) scheduleFrameWrite() {
		h2_bundle.go#L5213: func (sc *http2serverConn) startGracefulShutdown() {
		h2_bundle.go#L5236: func (sc *http2serverConn) startGracefulShutdownInternal() {
		h2_bundle.go#L5240: func (sc *http2serverConn) goAway(code http2ErrCode) {
		h2_bundle.go#L5254: func (sc *http2serverConn) shutDownIn(d time.Duration) {
		h2_bundle.go#L5259: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L5270: func (sc *http2serverConn) processFrameFromReader(res http2readFrameResult) bool {
		h2_bundle.go#L5322: func (sc *http2serverConn) processFrame(f http2Frame) error {
		h2_bundle.go#L5375: func (sc *http2serverConn) processPing(f *http2PingFrame) error {
		h2_bundle.go#L5394: func (sc *http2serverConn) processWindowUpdate(f *http2WindowUpdateFrame) error {
		h2_bundle.go#L5426: func (sc *http2serverConn) processResetStream(f *http2RSTStreamFrame) error {
		h2_bundle.go#L5445: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
		h2_bundle.go#L5491: func (sc *http2serverConn) processSettings(f *http2SettingsFrame) error {
		h2_bundle.go#L5519: func (sc *http2serverConn) processSetting(s http2Setting) error {
		h2_bundle.go#L5551: func (sc *http2serverConn) processSettingInitialWindowSize(val uint32) error {
		h2_bundle.go#L5579: func (sc *http2serverConn) processData(f *http2DataFrame) error {
		h2_bundle.go#L5676: func (sc *http2serverConn) processGoAway(f *http2GoAwayFrame) error {
		h2_bundle.go#L5740: func (sc *http2serverConn) processHeaders(f *http2MetaHeadersFrame) error {
		h2_bundle.go#L5853: func (sc *http2serverConn) upgradeRequest(req *Request) {
		h2_bundle.go#L5907: func (sc *http2serverConn) checkPriority(streamID uint32, p http2PriorityParam) error {
		h2_bundle.go#L5918: func (sc *http2serverConn) processPriority(f *http2PriorityFrame) error {
		h2_bundle.go#L5926: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
		h2_bundle.go#L5962: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6027: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6102: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
		h2_bundle.go#L6123: func (sc *http2serverConn) scheduleHandler(streamID uint32, rw *http2responseWriter, req *Request, handler func(ResponseWriter, *Request)) error {
		h2_bundle.go#L6143: func (sc *http2serverConn) handlerDone() {
		h2_bundle.go#L6168: func (sc *http2serverConn) runHandler(rw *http2responseWriter, req *Request, handler func(ResponseWriter, *Request)) {
		h2_bundle.go#L6209: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
		h2_bundle.go#L6241: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
		h2_bundle.go#L6258: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
		h2_bundle.go#L6268: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
		h2_bundle.go#L6279: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
		h2_bundle.go#L6284: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
		h2_bundle.go#L6308: 	conn          *http2serverConn
		h2_bundle.go#L6364: 	conn   *http2serverConn
		h2_bundle.go#L6599: 	w.rws.conn.sendServeMsg(func(sc *http2serverConn) {
		h2_bundle.go#L6625: 	w.rws.conn.sendServeMsg(func(sc *http2serverConn) {
		h2_bundle.go#L6952: func (sc *http2serverConn) startPush(msg *http2startPushRequest) {
		h2_bundle.go#L7096: func (sc *http2serverConn) countError(name string, err error) error {